| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | export default class CottusFormatError extends Error { |
||
| 2 | get hash() { |
||
| 3 | return { |
||
| 4 | value : this.value, |
||
| 5 | // path : 'user.name', |
||
| 6 | code : this.code, |
||
| 7 | message : this.message |
||
| 8 | }; |
||
| 9 | } |
||
| 10 | |||
| 11 | setContext(value) { |
||
| 12 | this.value = value; |
||
| 13 | } |
||
| 14 | } |
||
| 15 |